Skip to main content

OverOperator

Type

operator

Summary

Binary division operator.

Syntax

<Left> / <Right>

Description

Binary division operator.

Parameters

NameTypeDescription

Left

An expression that evaluates to a number.

Right

An expression that evaluates to a number.

Examples

variable tVar as Number
put 3 / 5 into tVar -- tVar contains 0.6

Value

NameTypeDescription

return

The result of dividing the number Left by Right.

Thank you for your feedback!

Was this page helpful?